home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / password.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  913 b   |  30 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef PassWordH
  3. #define PassWordH
  4. //----------------------------------------------------------------------------
  5. #include <Buttons.hpp>
  6. #include <StdCtrls.hpp>
  7. #include <Controls.hpp>
  8. #include <Forms.hpp>
  9. #include <Graphics.hpp>
  10. #include <Classes.hpp>
  11. #include <SysUtils.hpp>
  12. #include <Windows.hpp>
  13. #include <System.hpp>
  14. //----------------------------------------------------------------------------
  15. class TPasswordDlg : public TForm
  16. {
  17. __published:
  18.     TLabel *Label1;
  19.     TEdit *Password;
  20.     TButton *OKBtn;
  21.     TButton *CancelBtn;
  22. private:
  23. public:
  24.     virtual __fastcall TPasswordDlg(TComponent* AOwner);
  25. };
  26. //----------------------------------------------------------------------------
  27. extern PACKAGE TPasswordDlg *PasswordDlg;
  28. //----------------------------------------------------------------------------
  29. #endif
  30.